home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevm32.c < prev    next >
C/C++ Source or Header  |  1996-05-10  |  7KB  |  229 lines

  1. /* Copyright (C) 1994, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevm32.c */
  20. /* 32-bit-per-pixel "memory" (stored bitmap) device */
  21. #include "memory_.h"
  22. #include "gx.h"
  23. #include "gxdevice.h"
  24. #include "gxdevmem.h"            /* semi-public definitions */
  25. #include "gdevmem.h"            /* private definitions */
  26.  
  27. /* ================ Standard (byte-oriented) device ================ */
  28.  
  29. #undef chunk
  30. #define chunk byte
  31.  
  32. /* Procedures */
  33. declare_mem_procs(mem_true32_copy_mono, mem_true32_copy_color, mem_true32_fill_rectangle);
  34.  
  35. /* The device descriptor. */
  36. const gx_device_memory far_data mem_true32_device =
  37.   mem_full_device("image32", 24, 8, mem_open,
  38.     gx_default_map_rgb_color, gx_default_map_color_rgb,
  39.     mem_true32_copy_mono, mem_true32_copy_color, mem_true32_fill_rectangle,
  40.     mem_get_bits, gx_default_cmyk_map_cmyk_color,
  41.     gx_default_strip_tile_rectangle, gx_no_strip_copy_rop);
  42.  
  43. /* Convert x coordinate to byte offset in scan line. */
  44. #undef x_to_byte
  45. #define x_to_byte(x) ((x) << 2)
  46.  
  47. /* Swap the bytes of a color if needed. */
  48. #define color_swap_bytes(color)\
  49.   (((color) >> 24) + (((color) >> 8) & 0xff00) +\
  50.    (((color) & 0xff00) << 8) + ((color) << 24))
  51. #if arch_is_big_endian
  52. #  define arrange_bytes(color) (color)
  53. #else
  54. #  define arrange_bytes(color) color_swap_bytes(color)
  55. #endif
  56.  
  57. /* Fill a rectangle with a color. */
  58. private int
  59. mem_true32_fill_rectangle(gx_device *dev,
  60.   int x, int y, int w, int h, gx_color_index color)
  61. {    bits32 a_color;
  62.     declare_scan_ptr(dest);
  63.  
  64.     fit_fill(dev, x, y, w, h);
  65.     a_color = arrange_bytes(color);
  66.     setup_rect(dest);
  67.     if ( w <= 4 )
  68.       switch ( w )
  69.         {
  70.         /*case 0:*/            /* not possible */
  71. #define dest32 ((bits32 *)dest)
  72.         case 1:
  73.           do
  74.         { dest32[0] = a_color;
  75.           inc_ptr(dest, draster);
  76.         }
  77.           while ( --h > 0 );
  78.           break;
  79.         case 2:
  80.           do
  81.         { dest32[1] = dest32[0] = a_color;
  82.           inc_ptr(dest, draster);
  83.         }
  84.           while ( --h > 0 );
  85.           break;
  86.         case 3:
  87.           do
  88.         { dest32[2] = dest32[1] = dest32[0] = a_color;
  89.           inc_ptr(dest, draster);
  90.         }
  91.           while ( --h > 0 );
  92.           break;
  93.         case 4:
  94.           do
  95.         { dest32[3] = dest32[2] = dest32[1] = dest32[0] = a_color;
  96.           inc_ptr(dest, draster);
  97.         }
  98.           while ( --h > 0 );
  99.           break;
  100.         default:            /* not possible */
  101.           ;
  102.         }
  103.     else if ( a_color == 0 )
  104.       do
  105.         {    memset(dest, 0, w << 2);
  106.         inc_ptr(dest, draster);
  107.         }
  108.       while ( --h > 0 );
  109.     else
  110.       do
  111.         {    bits32 *pptr = dest32;
  112.         int cnt = w;
  113.         do
  114.           { pptr[3] = pptr[2] = pptr[1] = pptr[0] = a_color;
  115.             pptr += 4;
  116.           }
  117.         while ( (cnt -= 4) > 4 );
  118.         do { *pptr++ = a_color; } while ( --cnt > 0 );
  119.         inc_ptr(dest, draster);
  120.         }
  121.       while ( --h > 0 );
  122. #undef dest32
  123.     return 0;
  124. }
  125.  
  126. /* Copy a monochrome bitmap. */
  127. private int
  128. mem_true32_copy_mono(gx_device *dev,
  129.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  130.   int x, int y, int w, int h, gx_color_index zero, gx_color_index one)
  131. {    bits32 a_zero = arrange_bytes(zero);
  132.     bits32 a_one = arrange_bytes(one);
  133.     const byte *line;
  134.     int first_bit;
  135.     declare_scan_ptr(dest);
  136.     fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  137.     setup_rect(dest);
  138.     line = base + (sourcex >> 3);
  139.     first_bit = 0x80 >> (sourcex & 7);
  140.     while ( h-- > 0 )
  141.     {    register bits32 *pptr = (bits32 *)dest;
  142.         const byte *sptr = line;
  143.         register int sbyte = *sptr++;
  144.         register int bit = first_bit;
  145.         int count = w;
  146.         do
  147.         {    if ( sbyte & bit )
  148.             {    if ( one != gx_no_color_index )
  149.                   *pptr = a_one;
  150.             }
  151.             else
  152.             {    if ( zero != gx_no_color_index )
  153.                   *pptr = a_zero;
  154.             }
  155.             if ( (bit >>= 1) == 0 )
  156.                 bit = 0x80, sbyte = *sptr++;
  157.             pptr++;
  158.         }
  159.         while ( --count > 0 );
  160.         line += sraster;
  161.         inc_ptr(dest, draster);
  162.     }
  163.     return 0;
  164. }
  165.  
  166. /* Copy a color bitmap. */
  167. private int
  168. mem_true32_copy_color(gx_device *dev,
  169.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  170.   int x, int y, int w, int h)
  171. {    fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  172.     mem_copy_byte_rect(mdev, base, sourcex, sraster, x, y, w, h);
  173.     return 0;
  174. }
  175.  
  176. /* ================ "Word"-oriented device ================ */
  177.  
  178. /* Note that on a big-endian machine, this is the same as the */
  179. /* standard byte-oriented-device. */
  180.  
  181. #if !arch_is_big_endian
  182.  
  183. /* Procedures */
  184. declare_mem_procs(mem32_word_copy_mono, mem32_word_copy_color, mem32_word_fill_rectangle);
  185.  
  186. /* Here is the device descriptor. */
  187. const gx_device_memory far_data mem_true32_word_device =
  188.   mem_full_device("image32w", 24, 8, mem_open,
  189.     gx_default_map_rgb_color, gx_default_map_color_rgb,
  190.     mem32_word_copy_mono, mem32_word_copy_color, mem32_word_fill_rectangle,
  191.     mem_word_get_bits, gx_default_cmyk_map_cmyk_color,
  192.     gx_default_strip_tile_rectangle, gx_no_strip_copy_rop);
  193.  
  194. /* Fill a rectangle with a color. */
  195. private int
  196. mem32_word_fill_rectangle(gx_device *dev, int x, int y, int w, int h,
  197.   gx_color_index color)
  198. {    return mem_true32_fill_rectangle(dev, x, y, w, h,
  199.                      color_swap_bytes(color));
  200. }
  201.  
  202. /* Copy a bitmap. */
  203. private int
  204. mem32_word_copy_mono(gx_device *dev,
  205.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  206.   int x, int y, int w, int h, gx_color_index zero, gx_color_index one)
  207. {    return mem_true32_copy_mono(dev, base, sourcex, sraster, id,
  208.                     x, y, w, h, color_swap_bytes(zero),
  209.                     color_swap_bytes(one));
  210. }
  211.  
  212. /* Copy a color bitmap. */
  213. private int
  214. mem32_word_copy_color(gx_device *dev,
  215.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  216.   int x, int y, int w, int h)
  217. {    byte *row;
  218.     uint raster;
  219.     fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  220.     row = scan_line_base(mdev, y);
  221.     raster = mdev->raster;
  222.     bytes_copy_rectangle(row + (x << 2), raster, base + (sourcex << 2),
  223.                  sraster, w << 2, h);
  224.     mem_swap_byte_rect(row, raster, x << 5, w << 5, h, false);
  225.     return 0;
  226. }
  227.  
  228. #endif                /* !arch_is_big_endian */
  229.